home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / komercni software / miton / spysweeper50setup.exe / {app} / SpyHelp.chm / scripts / seealso.js < prev   
Text File  |  2006-06-01  |  896b  |  35 lines

  1. // Copyright (c) 2002-2003 Quadralay Corporation.  All rights reserved.
  2. //
  3.  
  4. function  WWSeeAlso_Object()
  5. {
  6.   this.mSetTimeoutID = null;
  7.  
  8.   this.fOnClickButton = WWSeeAlso_OnClickButton;
  9.   this.fOnClickLink   = WWSeeAlso_OnClickLink;
  10.   this.fShowSeeAlso   = WWSeeAlso_ShowSeeAlso;
  11. }
  12.  
  13. function  WWSeeAlso_OnClickButton(ParamSeeAlsoObjectID)
  14. {
  15.   if (this.mSetTimeoutID == null)
  16.   {
  17.     this.mSetTimeoutID = setTimeout("window.VarSeeAlso.fShowSeeAlso(" + ParamSeeAlsoObjectID + ");", 10);
  18.   }
  19. }
  20.  
  21. function  WWSeeAlso_OnClickLink(ParamSeeAlsoObjectID)
  22. {
  23.   if (this.mSetTimeoutID == null)
  24.   {
  25.     this.mSetTimeoutID = setTimeout("window.VarSeeAlso.fShowSeeAlso(" + ParamSeeAlsoObjectID + ");", 10);
  26.   }
  27. }
  28.  
  29. function  WWSeeAlso_ShowSeeAlso(ParamSeeAlsoObjectID)
  30. {
  31.   setTimeout("document.SeeAlso_" + ParamSeeAlsoObjectID + ".Click();", 1);
  32.  
  33.   this.mSetTimeoutID = null;
  34. }
  35.